home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Compilers / digital marsC compier / dm / include / Swap.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-03-16  |  1.2 KB  |  45 lines

  1. /* Copyright (C) 1986-2001 by Digital Mars. $Revision: 1.1.1.1 $ */
  2. #if __SC__ || __RCC__
  3. #pragma once
  4. #endif
  5.  
  6. #ifndef __SWAP_H
  7. #define __SWAP_H 1
  8.  
  9. #define SWAP_FREEMEMERROR -2
  10. #define SWAP_NOVMSPACE    -3
  11.  
  12. #ifdef __cplusplus
  13. extern "C"
  14.   {
  15. #endif
  16.  int __cdecl swap_ison(void);
  17.  int __cdecl swap_istempcheckon(void);
  18.  int __cdecl swap_iswindowon(void);
  19.  int __cdecl swap_ispipeon(void);
  20.  int __cdecl swap_isfreeparagraphson(void);
  21.  int __cdecl swap_istrapcbreakon(void);
  22.  int __cdecl swap_isclearkeyboardon(void);
  23. void __cdecl swap_on(void);
  24. void __cdecl swap_off(void);
  25. void __cdecl swap_tempcheckon(void);
  26. void __cdecl swap_tempcheckoff(void);
  27. void __cdecl swap_window(int col,int lin,int x,int y);
  28. void __cdecl swap_windowon(void);
  29. void __cdecl swap_windowoff(void);
  30. void __cdecl swap_pipe(const char *file);
  31. void __cdecl swap_pipeon(void);
  32. void __cdecl swap_pipeoff(void);
  33. void __cdecl swap_freeparagraphs(unsigned int sz);
  34. void __cdecl swap_freeparagraphson(void);
  35. void __cdecl swap_freeparagraphsoff(void);
  36. void __cdecl swap_trapcbreakon(void);
  37. void __cdecl swap_trapcbreakoff(void);
  38. void __cdecl swap_clearkeyboardon(void);
  39. void __cdecl swap_clearkeyboardoff(void);
  40. #ifdef __cplusplus
  41.   }
  42. #endif
  43.  
  44. #endif
  45.